home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / src / fig11_10.jar / Ch11 / Fig11_10 / Fig11_10.cpp
C/C++ Source or Header  |  1997-10-29  |  415b  |  20 lines

  1. // Fig. 11.10: fig11_10.cpp 
  2. // Avoiding a precedence problem between the stream-insertion 
  3. // operator and the conditional operator.
  4. // Need parentheses around the conditional expression.
  5. #include <iostream.h>
  6.  
  7. int main()
  8. {
  9.    int x, y;
  10.  
  11.    cout << "Enter two integers: ";
  12.    cin >> x >> y;
  13.    cout << x << ( x == y ? " is" : " is not" ) 
  14.         << " equal to " << y << endl;
  15.  
  16.    return 0;
  17. }
  18.  
  19.  
  20.